home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- go(the frame)
- repeat with n = 27 to 32
- if rollOver(n) then
- set the visible of sprite n to 0
- end if
- updateStage()
- end repeat
- repeat with n = 27 to 32
- if not rollOver(n) then
- set the visible of sprite n to 1
- end if
- updateStage()
- end repeat
- repeat with n = 10 to 13
- if rollOver(n) then
- set the visible of sprite n to 0
- end if
- if rollOver(n) then
- set the visible of sprite (n + 5) to 1
- end if
- updateStage()
- end repeat
- repeat with n = 10 to 13
- if not rollOver(n) then
- set the visible of sprite n to 1
- end if
- if not rollOver(n) then
- set the visible of sprite (n + 5) to 0
- end if
- updateStage()
- end repeat
- end
-